home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 21 / AACD 21.iso / AACD / Utilities / EvenMore / rexx / lha.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  2000-02-12  |  276 b   |  17 lines

  1. /* View lha archives with EvenMore */
  2.  
  3. parse arg filename
  4.  
  5. if ~show('p','rexxsupport.library') then call addlib('rexxsupport.library',0,-30,0)
  6.  
  7. address command 'c:lha v 'filename' >ram:lhaview'
  8.  
  9. address 'EVENMORE.1'
  10. "OPEN ram:lhaview"
  11.  
  12. delay(150)
  13.  
  14. delete('ram:lhaview')
  15.  
  16. exit
  17.